home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 30 / PC Gamer IT CD 30 1-2.iso / MOTS / GAMEDATA / RESOURCE / JKMRES.GOO / cog_pow_livethermal.cog < prev    next >
Text File  |  1998-02-25  |  584b  |  34 lines

  1. # Jedi Knight Cog Script
  2. #
  3. # POW_LIVETHERMAL.COG
  4. #
  5. # POWERUP Script - Live Thermal Detonator to be pulled when you hold a TD in hand.
  6. # Simple but deadly : think before you pull... :-)
  7. #
  8. # [YB]
  9. #
  10. # (C) 1997 LucasArts Entertainment Co. All Rights Reserved
  11.  
  12.  
  13. symbols
  14.  
  15. template    explosionTpl=+grenade_exp        local
  16.  
  17. message     touched
  18.  
  19. end
  20.  
  21. # ========================================================================================
  22.  
  23. code
  24.  
  25. touched:
  26.    CreateThingNR(explosionTpl, GetSenderRef());
  27.    DestroyThing(GetSenderRef());
  28.  
  29.    Return;
  30.  
  31. end
  32.  
  33.  
  34.